home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1994 March / Internet Info CD-ROM (Walnut Creek) (March 1994).iso / networking / ip / ka9q / src890906.arc / IFACE.C < prev    next >
C/C++ Source or Header  |  1989-08-13  |  1KB  |  61 lines

  1. #include <stdio.h>
  2. #include "global.h"
  3. #include "iface.h"
  4.  
  5. struct iface *
  6. if_lookup(name)
  7. char *name;
  8. {
  9.     register struct iface *iface;
  10.  
  11.     for(iface = Ifaces; iface != NULLIF; iface = iface->next)
  12.         if(strcmp(iface->name,name) == 0)
  13.             break;
  14.     return iface;
  15. }
  16. /* Divert output packets from one interface to another. Useful for ARP
  17.  * and digipeat frames coming in from receive-only interfaces
  18.  */
  19. int
  20. doforward(argc,argv,p)
  21. int argc;
  22. char *argv[];
  23. void *p;
  24. {
  25.     struct iface *iface,*iface1;
  26.     
  27.  
  28.     if(argc < 2){
  29.         for(iface = Ifaces; iface != NULLIF; iface = iface->next){
  30.             if(iface->forw != NULLIF){
  31.                 printf("%s -> %s\n",iface->name,iface->forw->name);
  32.             }
  33.         }
  34.         return 0;
  35.     }
  36.     if((iface = if_lookup(argv[1])) == NULLIF){
  37.         printf("Interface %s unknown\n",argv[1]);
  38.         return 1;
  39.     }
  40.     if(argc < 3){
  41.         if(iface->forw == NULLIF)
  42.             printf("%s not forwarded\n",iface->name);
  43.         else
  44.             printf("%s -> %s\n",iface->name,iface->forw->name);
  45.         return 0;
  46.     }
  47.     if((iface1 = if_lookup(argv[2])) == NULLIF){
  48.         printf("Interface %s unknown\n",argv[2]);
  49.         return 1;
  50.     }
  51.     if(iface1 == iface){
  52.         /* Forward to self means "turn forwarding off" */
  53.         iface->forw = NULLIF;
  54.     } else {
  55.         if(iface1->output != iface->output)
  56.             printf("Warning: Interfaces of different type\n");
  57.         iface->forw = iface1;
  58.     }
  59.     return 0;
  60. }
  61.